home *** CD-ROM | disk | FTP | other *** search
/ MacHome 1999 Game / Image.bin / Humor / Billmo Comedy / Billmo Comedy Skit / Billmo Comedy Skit.0 / 00092_Dumb frame.ls < prev    next >
Encoding:
Text File  |  1997-05-01  |  286 b   |  21 lines

  1. on enterFrame
  2.   global gClickle
  3.   puppetSound("Dummies")
  4.   updateStage()
  5.   puppetSound(0)
  6.   if gClickle = 5 then
  7.     set gClickle to gClickle + 1
  8.   else
  9.     nothing()
  10.   end if
  11. end
  12.  
  13. on exitFrame
  14.   global gClickle
  15.   if gClickle = 1 then
  16.     go("New")
  17.   else
  18.     go("Billmo")
  19.   end if
  20. end
  21.